<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "simhei";
  src: url("../assets/fonts/simhei/chinese.simhei.ttf");
}

body {
  color: #717171;
  font-family: "simhei";
}

.fw-medium {
  font-weight: 600;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 72px;
}

.mb-8 {
  margin-bottom: 84px;
}

.heading-1 {
  font-size: 40px;
}

.heading-2 {
  font-size: 30px;
}

.heading-3 {
  font-size: 24px;
}

.heading-4 {
  font-size: 20px;
}

.heading-5 {
  font-size: 16px;
}

.desc-lg {
  font-size: 22px;
}

.desc-sm {
  font-size: 14px;
}

.desc-xs {
  font-size: 12px;
}

.text-blue-01 {
  color: #0c2e88;
}

.text-blue-01:hover {
  color: #0c2e88;
}

.text-blue-01-link {
  color: #0c2e88;
  text-decoration: none;
}

.text-blue-01-link:hover {
  color: red;
}

.text-blue-02 {
  color: #197ccd;
}

.text-blue-02:hover {
  color: #197ccd;
}

.text-gray-01 {
  color: #8b8686;
}

.text-gray-01:hover {
  color: #8b8686;
}

.text-gray-02 {
  color: #717171;
}

.text-gray-02:hover {
  color: #717171;
}

.text-red {
  color: red;
}

.required {
  color: red;
}

.btn-sm {
  font-size: 12px;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary {
  background-color: #0c2e88;
  border-color: #0c2e88;
}

.btn-primary:hover {
  background-color: #fff;
  color: #0c2e88;
  border-color: #0c2e88;
}

.btn-outline-secondary {
  width: 200px;
  max-width: 100%;
  min-height: 44px;
  font-size: 18px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
}

.section__title h4 {
  position: relative;
  text-transform: uppercase;
}

.section__title h4:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: red;
  position: absolute;
  right: 0;
  bottom: -10px;
}

.section__title span {
  position: relative;
  width: 70px;
  height: 2px;
  background-color: #c6c6c6;
  position: relative;
  top: 2px;
}

.section__title span:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #c6c6c6;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.section__title span:first-child {
  background: #c6c6c6;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, #c6c6c6), to(rgba(198, 198, 198, 0)));
  background: linear-gradient(270deg, #c6c6c6 57%, rgba(198, 198, 198, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6c6c6",endColorstr="#c6c6c6",GradientType=1);
}

.section__title span:last-child {
  background: #c6c6c6;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, #c6c6c6), to(rgba(198, 198, 198, 0)));
  background: linear-gradient(90deg, #c6c6c6 57%, rgba(198, 198, 198, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6c6c6",endColorstr="#c6c6c6",GradientType=1);
}

.section__title span:last-child:before {
  right: auto;
  left: 0;
}

.navbar {
  background-color: #0c2e88;
  padding: 33px 3%;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 70px;
}

.navbar-toggler {
  border: none;
  width: 22px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler:hover span:nth-child(3) {
  width: 100%;
  margin-left: 0;
}

.navbar .navbar-toggler__span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar .navbar-toggler__span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.navbar .navbar-toggler__span:nth-child(2) {
  top: 6px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.navbar .navbar-toggler__span:nth-child(3) {
  top: 13px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  width: 70%;
  margin-left: 30%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar [aria-expanded="true"] .navbar-toggler__span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -2px;
  left: 3px;
}

.navbar [aria-expanded="true"] .navbar-toggler__span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.navbar [aria-expanded="true"] .navbar-toggler__span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 3px;
  width: 100%;
  margin-left: 0;
}

.navbar .navbar-nav {
  margin-right: 5%;
}

.navbar .nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #de322e;
}

.navbar .nav-link-home {
  color: #9f9ea3;
}

.navbar .active-link {
  color: #de322e !important;
}

@media (max-width: 1400px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar .navbar-nav {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 40px;
  }
}

.ts-form {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.ts-form form {
  max-width: 600px;
  margin: 0 auto;
}

.footer {
  background-color: #0c2e88;
  padding: 72px 0 12px;
  text-align: center;
}

.footer__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.footer__links {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 12px;
  padding: 0;
}

.footer__title, .footer__link {
  text-decoration: none;
  color: #fff;
}

.footer__title:hover, .footer__link:hover {
  color: red;
}

.footer__title {
  font-size: 18px;
  font-weight: bold;
}

.footer__link {
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer__main {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .footer__main {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    text-align: start;
  }
  .footer__main .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .footer__main .footer__links li:first-child {
    width: 100%;
  }
}

.dropdown-menu {
  background-color: #0c2e88 !important;
  border-color: #0c2e88 !important;
}

.dropdown-item {
  color: #fff;
}

.navbar {
  position: relative;
}

.navbar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 45%;
  background: white;
  -webkit-clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 43.7%;
  top: 0;
  height: 100%;
  width: 120px;
  background-color: red;
  -webkit-clip-path: polygon(54% 0, 79% 0, 40% 100%, 17% 100%);
          clip-path: polygon(54% 0, 79% 0, 40% 100%, 17% 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.navbar .container-fluid {
  position: relative;
  z-index: 10;
}

@media (max-width: 1400px) {
  .navbar::after {
    content: "";
    position: absolute;
    left: 44%;
    width: 100px;
  }
  .navbar .navbar-collapse .nav-link {
    color: #0c2e88 !important;
  }
}

@media (max-width: 600px) {
  .navbar::before {
    width: 63%;
  }
  .navbar::after {
    content: "";
    position: absolute;
    left: 60%;
    -webkit-clip-path: polygon(56% 0, 76% 0, 55% 100%, 33% 100%);
            clip-path: polygon(56% 0, 76% 0, 55% 100%, 33% 100%);
  }
}

@media (max-width: 475px) {
  .navbar::before {
    width: 83%;
  }
  .navbar::after {
    content: "";
    position: absolute;
    left: 80%;
    -webkit-clip-path: polygon(56% 0, 76% 0, 55% 100%, 33% 100%);
            clip-path: polygon(56% 0, 76% 0, 55% 100%, 33% 100%);
  }
}

main {
  min-height: 100vh;
}

.ts-product {
  max-width: 13 00px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 140px;
}

.ts-product-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ts-product-card {
  position: relative;
  background-color: #c7cccf;
  padding-top: 20px;
}

.ts-product-card p {
  color: #8b8686;
}

.ts-product-card:hover h5 {
  color: red;
}

@media (max-width: 991px) {
  .ts-product-cards {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .ts-product-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.ts-company-profile {
  background-image: url("../assets/images/cp-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ts-company-profile__main {
  margin-top: 136px;
}

.ts-company-profile__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.ts-company-profile-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[4];
      grid-template-columns: repeat(4, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.ts-company-profile-cards-outer {
  padding: 48px 0 34px;
  background-color: rgba(12, 45, 136, 0.5);
}

.ts-company-profile-card {
  text-align: center;
  max-width: 196px;
}

.ts-company-profile-card__header {
  height: 120px;
}

.ts-company-profile-card img {
  margin-bottom: 24px;
}

.ts-company-profile-card__title {
  color: #0c2e88;
  font-size: 32px;
}

.ts-company-profile-card__desc {
  color: #cdcdcd;
  font-size: 18px;
  max-width: 167px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .ts-company-profile-card__title {
    color: #0c2e88;
    font-size: 24px;
  }
  .ts-company-profile-card__desc {
    color: #cdcdcd;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .ts-company-profile-cards {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
}

.new-arrival-btn {
  cursor: pointer;
}

.new-arrival__header {
  background-color: #eeefef;
  padding: 121px 0 22px;
}

.new-arrival__main {
  position: relative;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 45px;
}

.new-arrival .swiper-slide {
  height: 100%;
}

.new-arrival-card {
  border: 3px solid #0c2e88;
  padding: 20px;
  height: 100%;
}

.new-arrival .swiper-button-next,
.new-arrival .swiper-button-prev {
  color: #0c2e88;
  border: 3px solid #0c2e88;
  padding: 2px;
  border-radius: 8px;
  width: 38px;
}

.new-arrival .swiper-button-next::after,
.new-arrival .swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.new-arrival .swiper-button-prev,
.new-arrival .swiper-rtl .swiper-button-next {
  left: 0;
}

.new-arrival .swiper-button-next,
.new-arrival .swiper-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
}
/*# sourceMappingURL=index.css.map */</pre></body></html>